home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gator.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  56 lines

  1. # This script was written by Jeff Adams <jeffrey.adams@hqda.army.mil>
  2. # This script is Copyright (C) 2003 Jeff Adams
  3.  
  4.  
  5. if(description)
  6. {
  7.  script_id(11883);
  8.  
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "Gator/GAIN Spyware Installed";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host has Gator/GAIN Spyware Installed. Gator tracks the sites that 
  17. users visit and forwards that data back to the company's servers. Gator sells 
  18. the use of this information to advertisers. It also lets companies launch a 
  19. pop-up ad when users visit various Web sites. This software is not suitable 
  20. for a business environment.
  21.  
  22. Solution : Uninstall the software
  23.  
  24. Risk factor : Medium";
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Determines if Gator Spyware is installed";
  30.  
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2003 Jeff Adams");
  36.  family["english"] = "Windows";
  37.  script_family(english:family["english"]);
  38.  
  39.  script_dependencies("netbios_name_get.nasl",
  40.              "smb_login.nasl","smb_registry_access.nasl",
  41.             "smb_registry_full_access.nasl");
  42.  script_require_keys("SMB/name", "SMB/login", "SMB/password",
  43.              "SMB/domain","SMB/transport");
  44.  
  45.  script_require_ports(139, 445);
  46.  exit(0);
  47. }
  48.  
  49. include("smb_nt.inc");
  50.  
  51. rootfile = registry_get_sz(key:"SOFTWARE\Gator.com\Gator\dyn", item:"AppExe");
  52. if(rootfile)
  53. {
  54.  security_note(get_kb_item("SMB/transport"));
  55. }
  56.